Carbon


QTSNotificationProcPtr

Header: QuickTimeStreaming.h Carbon status: Supported

typedef ComponentResult(* QTSNotificationProcPtr) (
    ComponentResult inErr, 
    OSType inNotificationType, 
    void *inNotificationParams, 
    void *inRefCon
);

You would declare your function like this if you were to name it MyQTSNotificationCallback:

ComponentResult MyQTSNotificationCallback (
    ComponentResult inErr, 
    OSType inNotificationType, 
    void *inNotificationParams, 
    void *inRefCon
);

© 2000 Apple Computer, Inc. (Last Updated 6/26/2000)